std::multiset::rbegin, std::multiset::crbegin
From Cppreference
| iterator rbegin();
| ||
| const_iterator rbegin() const;
| ||
| const_iterator crbegin() const;
| (C++0x feature) | |
Returns a reverse iterator to the first element of the reversed container. It corresponds to the last element of the non-reversed container.
Contents |
Parameters
(none)
Return value
reverse iterator to the first element
Complexity
constant
See also
| returns a reverse iterator to the end (public member function) | |